hello, |
Re: DBE Color Try something like the following: const string RTF_OPEN_DISCUSSION_INT = "{\\b\\*cf3* Open Discussions (Internal)}}\n\n\n" Buffer buf = create() string sFontTable = "{\\rtf1{\\colortbl;\\red255\\green0\\blue0;\\red237\\green110\\blue25;\\red0\\green0\\blue255;}" buffer = sFontTable RTF_OPEN_DISCUSSION_INT useRTFColour(textbox_dbe, true) set(textbox_dbe, tempStringOf buffer) \\*cf3* will trigger the secondidentified color in sFontTable which if you know your RGB colors ends up being blue. Why is this sooo complicated? As Louie once stated "because the sky is \\cf3" ;) |